Document GtkRange::adjust-bounds
authorMatthias Clasen <mclasen@redhat.com>
Tue, 25 May 2010 13:44:29 +0000 (09:44 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 25 May 2010 13:44:29 +0000 (09:44 -0400)
gtk/gtkrange.c

index 42dfa1c3dd7f33402f29cf32c1b7afc182cd643f..744871d065b69c3df4a2b82d013a862d5f7a4561 100644 (file)
@@ -305,6 +305,9 @@ gtk_range_class_init (GtkRangeClass *class)
    * GtkRange::adjust-bounds:
    * @range: the #GtkRange that received the signal
    * @value: the value before we clamp
+   *
+   * Emitted before clamping a value, to give the application a
+   * chance to adjust the bounds.
    */
   signals[ADJUST_BOUNDS] =
     g_signal_new (I_("adjust-bounds"),
@@ -3646,7 +3649,7 @@ gtk_range_real_change_value (GtkRange     *range,
                              GtkScrollType scroll,
                              gdouble       value)
 {
-  /* potentially adjust the bounds _before we clamp */
+  /* potentially adjust the bounds _before_ we clamp */
   g_signal_emit (range, signals[ADJUST_BOUNDS], 0, value);
 
   if (range->layout->restrict_to_fill_level)